home *** CD-ROM | disk | FTP | other *** search
- package regex;
-
- import java.util.BitSet;
-
- class DList {
- private Chars chars;
- // $FF: renamed from: to java.util.BitSet
- private BitSet field_0;
- private DList next;
-
- // $FF: renamed from: to () java.util.BitSet
- public BitSet method_0() {
- return this.field_0;
- }
-
- public DList() {
- this((Chars)null, new BitSet(), (DList)null);
- }
-
- public DList(Chars var1, BitSet var2, DList var3) {
- this.chars = var1;
- this.field_0 = var2;
- this.next = var3;
- }
-
- public void setNext(DList var1) {
- this.next = var1;
- }
-
- public DList next() {
- return this.next;
- }
-
- public Chars chars() {
- return this.chars;
- }
- }
-